From: Sergei Shtylyov Date: Sat, 7 May 2016 19:53:40 +0000 (+0300) Subject: pxa168_eth: mdiobus_scan() doesn't return NULL anymore X-Git-Tag: archive/raspbian/4.9.13-1+rpi1~10^2~2330^2~90 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/%22/%22http:/www.example.com/cgi/%22?a=commitdiff_plain;h=59efcbaf434964f324928619fcd0a6f506134753;p=linux-4.9.git pxa168_eth: mdiobus_scan() doesn't return NULL anymore Now that mdiobus_scan() doesn't return NULL on failure anymore, this driver no longer needs to check for it... Signed-off-by: Sergei Shtylyov Signed-off-by: David S. Miller --- diff --git a/drivers/net/ethernet/marvell/pxa168_eth.c b/drivers/net/ethernet/marvell/pxa168_eth.c index 15cf50d7e316..89d0d835352e 100644 --- a/drivers/net/ethernet/marvell/pxa168_eth.c +++ b/drivers/net/ethernet/marvell/pxa168_eth.c @@ -981,8 +981,6 @@ static int pxa168_init_phy(struct net_device *dev) pep->phy = mdiobus_scan(pep->smi_bus, pep->phy_addr); if (IS_ERR(pep->phy)) return PTR_ERR(pep->phy); - if (!pep->phy) - return -ENODEV; err = phy_connect_direct(dev, pep->phy, pxa168_eth_adjust_link, pep->phy_intf);